home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 22 / CU Amiga Magazine's Super CD-ROM 22 (1998)(EMAP Images)(GB)[!][issue 1998-05].iso / PowerPC / Programming / vbcc / machines / amigappc / libsrc / math / cosh.c < prev    next >
Encoding:
C/C++ Source or Header  |  1997-12-30  |  78 b   |  7 lines

  1. #include <math.h>
  2.  
  3. double cosh(double x)
  4. {
  5.   return ((exp(x)+exp(-x))/2.0);
  6. }
  7.